home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / faq-s.zip / TYPES.PAS < prev    next >
Pascal/Delphi Source File  |  1989-09-10  |  159b  |  13 lines

  1. unit types;
  2.  
  3. interface
  4.  
  5. type
  6.   anystr=string[255];
  7.   lstr=string[80];
  8.   mstr=string[30];
  9.   sstr=string[15];
  10.   fstr=string[8];
  11.  
  12. implementation
  13. end.